![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
parse-duration
Advanced tools
The parse-duration npm package is a utility for parsing human-readable duration strings into milliseconds. It is useful for converting time durations specified in various formats (like '2h', '1d', '5m', etc.) into a standard numerical format that can be used programmatically.
Parse human-readable duration strings
This feature allows you to convert a human-readable duration string (e.g., '2h' for 2 hours) into milliseconds. The code sample demonstrates parsing '2h' into 7200000 milliseconds.
const parseDuration = require('parse-duration');
const duration = parseDuration('2h');
console.log(duration); // 7200000
Parse complex duration strings
This feature allows you to parse more complex duration strings that include multiple time units. The code sample shows how '1d 2h 30m' is parsed into 93600000 milliseconds.
const parseDuration = require('parse-duration');
const duration = parseDuration('1d 2h 30m');
console.log(duration); // 93600000
Handle invalid input gracefully
This feature ensures that invalid input strings are handled gracefully by returning null. The code sample demonstrates parsing an invalid string 'invalid', which results in null.
const parseDuration = require('parse-duration');
const duration = parseDuration('invalid');
console.log(duration); // null
The 'ms' package is another utility for parsing and formatting milliseconds. It can convert human-readable strings into milliseconds and vice versa. Compared to parse-duration, 'ms' is more focused on simplicity and has a smaller feature set.
The 'moment-duration-format' package extends Moment.js to format durations. It is more feature-rich compared to parse-duration, offering advanced formatting options and integration with Moment.js for more complex date and time manipulations.
The 'humanize-duration' package is designed to convert milliseconds into human-readable strings. It is essentially the reverse of parse-duration, focusing on converting numerical durations into readable formats.
convert a human readable duration to ms
npm install parse-duration
then in your app:
var parse = require('parse-duration')
convert str
to ms
var ns = parse('1ns') // => 1 / 1e6
var μs = parse('1μs') // => 1 / 1000
var ms = parse('1ms') // => 1
var s = parse('1s') // => ms * 1000
var m = parse('1m') // => s * 60
var h = parse('1h') // => m * 60
var d = parse('1d') // => h * 24
var w = parse('1w') // => d * 7
var y = parse('1y') // => d * 365.25
It can also handle basic compound expressions
parse('1hr 20mins') // => 1 * h + 20 * m
whitespace
parse('1 hr 20 mins') // => 1 * h + 20 * m
comma seperated numbers
parse('27,681 ns') // => 27681 * ns
And most other types of noise
parse('running length: 1hour:20mins') // => 1* h + 20 * m
You can even use negatives
parse('2hr -40mins') // => 1 * h + 20 * m
And exponents
parse('2e3s') // => 2000 * s
Available unit types are:
And its easy to add more
The output format can also be defined
parse('1hr 20mins', 'm') // => 80
FAQs
Convert a human readable duration string to a duration format
We found that parse-duration demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.